{% extends "base.html" %} {% block title %}My Articles - Quick Care Connect{% endblock %} {% block content %}
| Cover | Article Details | Category | Status | Dates | Actions |
|---|---|---|---|---|---|
|
{% if blog.featured_image %}
|
{{ blog.title }}
{% if blog.excerpt %}{{ blog.excerpt }}{% else %}{{ blog.content|striptags|truncate(100) }}{% endif %}
{% if blog.status == 'rejected' and blog.admin_feedback %}
Admin Revision Required:
{{ blog.admin_feedback }}
{% for tag in blog.tags.split(',')[:3] %}
{{ tag.strip() }}
{% endfor %}
{% endif %}
|
{{ blog.category or 'General' }} | {% if blog.status == 'published' %} Published {% elif blog.status == 'pending' %} Under Review {% elif blog.status == 'rejected' %} Rejected {% elif blog.status == 'draft' %} Draft {% else %} {{ blog.status|title }} {% endif %} |
Created:
{{ blog.created_at.strftime('%b %d, %Y') }}
{% if blog.published_at %}
{% if blog.status == 'scheduled' %}Publishes:{% else %}Published:{% endif %}
{{ blog.published_at.strftime('%b %d, %Y') }}
{% endif %}
|
Start sharing your medical knowledge by writing your first article!
Create Your First Article